CMINVOKECOMMANDINFO (Structures)
Last changed: -108.225.177.104

.
Summary
Contains information needed by IContextMenu::InvokeCommand to invoke a shortcut menu command.

C# Definition:

[StructLayout (LayoutKind.Sequential)]
struct CMINVOKECOMMANDINFO
{
     int      cbSize;    // sizeof(CMINVOKECOMMANDINFO)
     int      fMask;     // any combination of CMIC_MASK_*
     IntPtr       hwnd;      // might be NULL (indicating no owner window)
     string       lpVerb;    // either a string or MAKEINTRESOURCE(idOffset)
     string       lpParameters;  // might be NULL (indicating no parameter)
     string       lpDirectory;   // might be NULL (indicating no specific directory)
     int      nShow;     // one of SW_ values for ShowWindow() API
     int      dwHotKey;
     IntPtr       hIcon;
}

VB Definition:

Structure CMINVOKECOMMANDINFO
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation